home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / ftpresum.dfm / ftpresum.txt
Encoding:
Text File  |  1999-08-03  |  3.9 KB  |  194 lines

  1. object ResumeForm: TResumeForm
  2.   Left = 192
  3.   Top = 107
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Resuming File Transfer - TmsFTPClient Component'
  7.   ClientHeight = 348
  8.   ClientWidth = 356
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnClose = FormClose
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 356
  21.     Height = 225
  22.     Align = alTop
  23.     BevelOuter = bvNone
  24.     TabOrder = 0
  25.     object Label1: TLabel
  26.       Left = 8
  27.       Top = 45
  28.       Width = 34
  29.       Height = 13
  30.       Caption = 'Server:'
  31.     end
  32.     object Label2: TLabel
  33.       Left = 8
  34.       Top = 74
  35.       Width = 56
  36.       Height = 13
  37.       Caption = 'User Name:'
  38.     end
  39.     object Label3: TLabel
  40.       Left = 8
  41.       Top = 102
  42.       Width = 49
  43.       Height = 13
  44.       Caption = 'Password:'
  45.     end
  46.     object Label4: TLabel
  47.       Left = 8
  48.       Top = 160
  49.       Width = 50
  50.       Height = 13
  51.       Caption = 'File Name:'
  52.     end
  53.     object Label5: TLabel
  54.       Left = 8
  55.       Top = 131
  56.       Width = 109
  57.       Height = 13
  58.       Caption = 'Directory on the Server'
  59.     end
  60.     object SpeedButton1: TSpeedButton
  61.       Left = 320
  62.       Top = 155
  63.       Width = 23
  64.       Height = 22
  65.       Caption = '...'
  66.       OnClick = SpeedButton1Click
  67.     end
  68.     object Label7: TLabel
  69.       Left = 8
  70.       Top = 16
  71.       Width = 46
  72.       Height = 13
  73.       Caption = 'Operation'
  74.     end
  75.     object ServerEdit: TEdit
  76.       Left = 136
  77.       Top = 41
  78.       Width = 209
  79.       Height = 21
  80.       TabOrder = 1
  81.     end
  82.     object UserNameEdit: TEdit
  83.       Left = 136
  84.       Top = 70
  85.       Width = 209
  86.       Height = 21
  87.       TabOrder = 2
  88.     end
  89.     object PasswordEdit: TEdit
  90.       Left = 136
  91.       Top = 98
  92.       Width = 209
  93.       Height = 21
  94.       PasswordChar = '*'
  95.       TabOrder = 3
  96.     end
  97.     object FileNameEdit: TEdit
  98.       Left = 136
  99.       Top = 156
  100.       Width = 177
  101.       Height = 21
  102.       TabOrder = 5
  103.     end
  104.     object StartButton: TButton
  105.       Left = 20
  106.       Top = 192
  107.       Width = 75
  108.       Height = 25
  109.       Caption = 'Start'
  110.       TabOrder = 6
  111.       OnClick = StartButtonClick
  112.     end
  113.     object CancelButton: TButton
  114.       Left = 260
  115.       Top = 192
  116.       Width = 75
  117.       Height = 25
  118.       Caption = 'Cancel'
  119.       Enabled = False
  120.       TabOrder = 8
  121.       OnClick = CancelButtonClick
  122.     end
  123.     object RemoteDirectoryEdit: TEdit
  124.       Left = 136
  125.       Top = 127
  126.       Width = 209
  127.       Height = 21
  128.       TabOrder = 4
  129.     end
  130.     object ResumeButton: TButton
  131.       Left = 140
  132.       Top = 192
  133.       Width = 75
  134.       Height = 25
  135.       Caption = 'Resume'
  136.       TabOrder = 7
  137.       OnClick = ResumeButtonClick
  138.     end
  139.     object OperationComboBox: TComboBox
  140.       Left = 136
  141.       Top = 12
  142.       Width = 209
  143.       Height = 21
  144.       Style = csDropDownList
  145.       ItemHeight = 13
  146.       Items.Strings = (
  147.         'Upload'
  148.         'Download')
  149.       TabOrder = 0
  150.     end
  151.   end
  152.   object LogMemo: TMemo
  153.     Left = 0
  154.     Top = 225
  155.     Width = 356
  156.     Height = 104
  157.     Align = alClient
  158.     TabOrder = 1
  159.   end
  160.   object StatusBar: TStatusBar
  161.     Left = 0
  162.     Top = 329
  163.     Width = 356
  164.     Height = 19
  165.     Panels = <>
  166.     SimplePanel = True
  167.     SizeGrip = False
  168.   end
  169.   object msFTPClient1: TmsFTPClient
  170.     Version = '2.0'
  171.     OnConnected = msFTPClient1Connected
  172.     OnDisconnected = msFTPClient1Disconnected
  173.     Port = 21
  174.     OnConnecting = msFTPClient1Connecting
  175.     PassiveMode = False
  176.     ServerType = stAuto
  177.     TransferType = ttBinary
  178.     ProxyType = fpUserNoLogon
  179.     OnDataTransferStart = msFTPClient1DataTransferStart
  180.     OnDataTransferTerminate = msFTPClient1DataTransferTerminate
  181.     OnDataTransferProgress = msFTPClient1DataTransferProgress
  182.     OnLineSent = OnLineTransferred
  183.     OnLineReceived = OnLineTransferred
  184.     Left = 176
  185.     Top = 248
  186.   end
  187.   object OpenDialog: TOpenDialog
  188.     FileEditStyle = fsEdit
  189.     Filter = 'All Files (*.*)|*.*'
  190.     Left = 216
  191.     Top = 248
  192.   end
  193. end
  194.